package xconst
const (
AxisAncestor = "ancestor"
AxisAncestorOrSelf = "ancestor-or-self"
AxisAttribute = "attribute"
AxisChild = "child"
AxisDescendent = "descendant"
AxisDescendentOrSelf = "descendant-or-self"
AxisFollowing = "following"
AxisFollowingSibling = "following-sibling"
AxisNamespace = "namespace"
AxisParent = "parent"
AxisPreceding = "preceding"
AxisPrecedingSibling = "preceding-sibling"
AxisSelf = "self"
)
var AxisNames = []string{
AxisAncestor,
AxisAncestorOrSelf,
AxisAttribute,
AxisChild,
AxisDescendent,
AxisDescendentOrSelf,
AxisFollowing,
AxisFollowingSibling,
AxisNamespace,
AxisParent,
AxisPreceding,
AxisPrecedingSibling,
AxisSelf,
}
const (
NodeTypeComment = "comment"
NodeTypeText = "text"
NodeTypeProcInst = "processing-instruction"
NodeTypeNode = "node"
)
var NodeTypes = []string{
NodeTypeComment,
NodeTypeText,
NodeTypeProcInst,
NodeTypeNode,
}
 |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |